home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Madness of Roland
/
MADNESS of Roland.iso
/
REXPAND1.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-10-01
|
3KB
|
85 lines
@echo off
rem -------------------------------------------------------------------------
rem In case the Roland setup program fails for some reason, you can manually
rem install Roland by following the directions below:
rem
rem 1) Create a Roland directory on your hard disk.
rem
rem 2) Run REXPAND1.BAT from the Roland CD. Type
rem "REXPAND1 <destination directory>". This will
rem expand compressed files into your Roland directory.
rem
rem 3) Run REXPAND2.BAT from the Roland CD. Type
rem "REXPAND2 <path to your WINDOWS\SYSTEM dir>". This will
rem expand compressed files to your WINDOWS\SYSTEM directory.
rem (The files copied are VBRUN300.DLL and VER.DLL. They will
rem only be copied if the files do not already exist).
rem
rem 4) Copy the ROLAND.INI file from the Roland CD into your
rem WINDOWS directory. You may need to modify the CDROM_PATH
rem entry to point to your CD drive (1 = A:\, 2 = B:\, 3 = C:\,
rem 4 = D:\, etc).
rem
rem 5) To make a program icon for Roland, create a new program item
rem from the File New menu. Set the command line property for the
rem icon to "<path to Roland directory>\ROLAND.EXE". Set the
rem working directory property to "<path to Roland directory>".
rem ------------------------------------------------------------------------
rem --- Catch command line errors. Must type "REXPAND1 <dest>".
if "%1"=="" goto help1 rem Did not enter destination
if not "%2"=="" goto help2 rem Entered both source and dest--
rem don't want source
rem --- Expand compressed files to the specified Roland directory
EXPAND -r ROLGUTS.EX_ %1
EXPAND -r ROLAND.EX_ %1
EXPAND -r FXIMG140.VB_ %1
EXPAND -r FXLBL140.VB_ %1
EXPAND -r FXTLS140.DL_ %1
EXPAND -r MHSL200.VB_ %1
EXPAND -r NOTE09.IC_ %1
EXPAND -r README.EX_ %1
EXPAND -r ROL-ICON.IC_ %1
EXPAND -r ROLAND.WR_ %1
EXPAND -r MHRUN400.DL_ %1
EXPAND -r PICCLIP.VB_ %1
EXPAND -r QTNOTIFY.EX_ %1
EXPAND -r PLAYENU.DL_ %1
EXPAND -r PLAYFRA.DL_ %1
EXPAND -r QCMC.QT_ %1
EXPAND -r QTCVID.QT_ %1
EXPAND -r QTHNDLR.DL_ %1
EXPAND -r QTIM.DL_ %1
EXPAND -r QTIMCMGR.DL_ %1
EXPAND -r QTJPEG.QT_ %1
EXPAND -r QTMOVIE.VB_ %1
EXPAND -r QTOLE.DL_ %1
EXPAND -r QTRAW.QT_ %1
EXPAND -r QTRLE.QT_ %1
EXPAND -r QTRPZA.QT_ %1
EXPAND -r QTRT21.QT_ %1
EXPAND -r QTSMC.QT_ %1
EXPAND -r QTVHDW.DL_ %1
EXPAND -r VIEWENU.DL_ %1
EXPAND -r VIEWFRA.DL_ %1
EXPAND -r MCIQTENU.DL_ %1
EXPAND -r MCIQTW.DR_ %1
EXPAND -r NAVG.QT_ %1
goto quit
:help1
echo.
echo Please specify the destination directory: "REXPAND1 <destination>"
echo.
goto quit
:help2
echo.
echo Make sure you are running REXPAND1 from the Roland CD: "REXPAND1 <destination>"
echo.
:quit